Auto backup mysql database to dropbox [closed]
Posted
by
Rob
on Programmers
See other posts from Programmers
or by Rob
Published on 2011-11-23T17:02:19Z
Indexed on
2011/11/23
18:03 UTC
Read the original article
Hit count: 249
Is it possible to automatically backup my database to dropbox? If so how can I do it?
The key criteria I need it to do is:
- Be automatic.
- Be Mac compliant.
- Be weekly.
- Sync with dropbox (http://www.dropbox.com) automatically.
- Be able to backup several databases from several websites.
- Be free... or relatively cheap!
- Have a guide on how to setup the solution.
UPDATE:
I've managed to setup an auto weekly backup using a cronjob:
mysqldump -u username -pMyPassword Mydatabase > backup-file.sql
That is saving the backup to my hosting space. It's a start but isn't ideal, how can I save that backup to a folder on my computer? Automatically of course.
© Programmers or respective owner